home *** CD-ROM | disk | FTP | other *** search
/ The Java 3D API Specification (2nd Edition) / The Java 3D API Specification (2nd Edition).iso / programs / examples / FourByFour / instructions.txt < prev    next >
Text File  |  2000-04-28  |  2KB  |  55 lines

  1.                     Four By Four
  2.  
  3. Description:
  4.  
  5.      A three dimensional game of tic-tac-toe on a 4x4x4 cube.
  6.  
  7. Object:
  8.  
  9.      Be the first to score four in a row.
  10.  
  11. Instructions:
  12.  
  13.      1.  It's you versus the computer.
  14.  
  15.      2.  There are five skill levels. Press the "Skill Level" button to select your level
  16.           of play. The program defaults to the hardest level. Changing the skill level in
  17.           the middle of a game will force the start of a new game.
  18.  
  19.      3.  The screen on the left is a 3D window. A mouse drag in this window will rotate the 
  20.           view to any desired position.
  21.  
  22.      4.  The screen on the right is a 2D window which displays all 18 faces that exist in the 
  23.           4x4x4 array.
  24.  
  25.      5.  Click on any of the small gray spheres (in either the 2D or 3D window) to select a position. 
  26.  
  27.      6.  Positions owned by you will be marked in red. Positions owned by the computer will be 
  28.           marked in blue.
  29.  
  30.      7.  Click the "Undo Move" button to take back a move.
  31.  
  32.      8.  Clicking on any of words "Face X" in the 2D window will cause that particular face to highlight
  33.           in the 3D window. Clicking the word again will un-highlight the face.
  34.  
  35.      9.  The final score is based on skill level, number of moves, and time. Select the button
  36.           "High Scores" to see a list of the top 20 scores. There is no penalty for using the
  37.           undo button.
  38.  
  39.     10. Good luck.
  40.  
  41. General Strategy:
  42.  
  43.      1.  There are a 64 positions from which to choose. In total, there are 72 possible winning 
  44.           combinations. 
  45.  
  46.      2.  The outer four corners and the inner "core" of eight have the most winning combinations,
  47.           7 each, and should perhaps be chosen first.
  48.  
  49.      3.  Use the 2D window to keep an eye on all the faces.
  50.  
  51.      4.  The computer plays well at the highest skill level (the default). There are, however,
  52.           faults in it's logic that can be exploited. Thus the human player can win even at the
  53.           highest skill level. In the beginning, however, you may want to start at the lower skill
  54.           levels and work your way up. 
  55.